home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / mcwint20.zip / W1.H < prev    next >
Text File  |  1987-10-21  |  892b  |  24 lines

  1. #define MAXWNDW 30
  2.  
  3. enum BORDERS {  nobrdr,blankbrdr,singlebrdr,doublebrdr,mixedbrdr,solidbrdr,
  4.                 evensolidbrdr,thinsolidbrdr,lhatchbrdr,mhatchbrdr,
  5.                 hhatchbrdr,userbrdr
  6.              };
  7. enum DIRTYPE {  nodir,up,down,cleartop,clearbottom,clearleftside,clearrightside,
  8.                 topleft,topright,topcenter,bottomleft,bottomright,bottomcenter,
  9.                 leftside,rightside,left,right
  10.              };
  11.  
  12. typedef struct {
  13.                  unsigned char tl[2], th, tr[2], lv, rv, bl[2], bh, br[2];
  14.                }  BRDRREC;
  15. typedef struct {
  16.                  int     wsrow, wscol, wsrows, wscols, wswattr, wsbattr;
  17.                  enum BORDERS  wsbrdr;
  18.                  enum DIRTYPE  wsshadow;
  19.                  int     wslastx, wslasty;
  20.                }  wndwstattype;
  21.  
  22. typedef char         *byteptr;
  23. typedef char         str160[160];
  24.